10
How do I bring/ensure a specified face to the front

Procedure OnCreate
	Forward Send OnCreate
	Set ComIdentifyFace to (OLEexIdentifyFaceFrame + OLEexIdentifyFaceName + OLEexIdentifyFaceCaption)
	Set ComVisibleFace to OLEexTopFace
End_Procedure
9
How do I bring/ensure a specified face to the front

Procedure OnCreate
	Forward Send OnCreate
	Set ComIdentifyFace to (OLEexIdentifyFaceFrame + OLEexIdentifyFaceName + OLEexIdentifyFaceCaption)
	Send ComEnsureVisibleFace OLEexTopFace Nothing
End_Procedure
8
It sounds like the BackColor property does nothing

Procedure OnCreate
	Forward Send OnCreate
	Set ComBackColor to (RGB(255,0,0))
	Set ComTransparent to 50
End_Procedure
7
Is there any property to identify the faces I can fill in

Procedure OnCreate
	Forward Send OnCreate
	Set ComIdentifyFace to (OLEexIdentifyFaceFrame + OLEexIdentifyFaceName + OLEexIdentifyFaceCaption)
End_Procedure
6
How can I prevent scrolling the control inside a face once the user rolls the mouse wheel
Procedure OnCreate
	Forward Send OnCreate
	Set ComOnMouseWheel to OLEexMouseWheelNothing
End_Procedure
5
Can I navigate through the faces 0 to 3 only, even with the keyboard
Procedure OnCreate
	Forward Send OnCreate
	Set ComEnsureVisibleFaces to "0,1,2,3"
	Set ComAllowRotate to (OLEexRotateRight + OLEexRotateLeft)
	Set ComIdentifyFace to (OLEexIdentifyFaceFrame + OLEexIdentifyFaceName + OLEexIdentifyFaceCaption)
	Set ComEnsureVisibleFaceOnDblClick to False
End_Procedure
4
It sounds like the BackColor property does nothing

Procedure OnCreate
	Forward Send OnCreate
	Set ComBackColor to (RGB(255,0,0))
	Set ComShowAs to OLEexOrthographic
	Set ComAlwaysEnsureVisibleFace to OLEexDisableEnsureVisibleFace
	Set ComRotX to 0.328184
	Set ComRotY to 0.967723
End_Procedure
3
Is it possible to let the control shows/rotates just the left/right side
Procedure OnCreate
	Forward Send OnCreate
	Set ComAllowRotate to (OLEexRotateRight + OLEexRotateLeft)
End_Procedure
2
How can I disable changing the view if the user presses SPACE or digit keys
Procedure OnCreate
	Forward Send OnCreate
	Set ComAllowEnsureVisibleFaceOnKey to OLEexEnsureVisibleFaceOnKeyDisabled
End_Procedure
1
I've noticed that I can not show the part of the control as I drag, once I release the mouse button

Procedure OnCreate
	Forward Send OnCreate
	Set ComIdentifyFace to (OLEexIdentifyFaceFrame + OLEexIdentifyFaceName + OLEexIdentifyFaceCaption)
	Set ComAlwaysEnsureVisibleFace to OLEexDisableEnsureVisibleFace
End_Procedure